home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form AboutBox
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Dialog
- Caption = "About FTP Explorer"
- ClientHeight = 5655
- ClientLeft = 1380
- ClientTop = 1035
- ClientWidth = 7005
- DrawWidth = 3
- ForeColor = &H00000000&
- Height = 6060
- Icon = "About.frx":0000
- Left = 1320
- LinkTopic = "Form2"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- NegotiateMenus = 0 'False
- ScaleHeight = 5655
- ScaleWidth = 7005
- Top = 690
- Width = 7125
- Begin VB.PictureBox CrescentLogo
- Appearance = 0 'Flat
- AutoSize = -1 'True
- BackColor = &H80000005&
- BorderStyle = 0 'None
- ForeColor = &H80000008&
- Height = 2505
- Left = 0
- Picture = "About.frx":000C
- ScaleHeight = 2505
- ScaleWidth = 7080
- TabIndex = 2
- Top = 3180
- Width = 7080
- End
- Begin VB.CommandButton cmdOK
- Caption = "OK"
- Default = -1 'True
- Height = 405
- Left = 5745
- TabIndex = 0
- Top = 2565
- Width = 1125
- End
- Begin VB.Image imgIcon
- Height = 480
- Left = 225
- Picture = "About.frx":13836
- Top = 135
- Width = 480
- End
- Begin VB.Line lneBox
- BorderColor = &H00FFFFFF&
- Index = 3
- X1 = 5790
- X2 = 5790
- Y1 = 1050
- Y2 = 1890
- End
- Begin VB.Line lneBox
- BorderColor = &H00808080&
- Index = 2
- X1 = 1095
- X2 = 1095
- Y1 = 1065
- Y2 = 1905
- End
- Begin VB.Line lneBox
- BorderColor = &H00FFFFFF&
- Index = 1
- X1 = 1110
- X2 = 5800
- Y1 = 1890
- Y2 = 1890
- End
- Begin VB.Line lneBox
- BorderColor = &H00808080&
- Index = 0
- X1 = 1095
- X2 = 5790
- Y1 = 1050
- Y2 = 1050
- End
- Begin VB.Label lblWarning
- BackStyle = 0 'Transparent
- Caption = $"About.frx":13C78
- ForeColor = &H00000000&
- Height = 1035
- Left = 75
- TabIndex = 1
- Top = 2115
- UseMnemonic = 0 'False
- Width = 4785
- WordWrap = -1 'True
- End
- Begin VB.Line lneSeparator
- BorderColor = &H00FFFFFF&
- Index = 1
- X1 = -240
- X2 = 7910
- Y1 = 2040
- Y2 = 2040
- End
- Begin VB.Line lneSeparator
- BorderColor = &H00808080&
- Index = 0
- X1 = -135
- X2 = 7910
- Y1 = 2025
- Y2 = 2025
- End
- Attribute VB_Name = "AboutBox"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdOK_Click()
- Unload Me
- End Sub
- Private Sub Form_Load()
- CenterForm Me
- End Sub
- Private Sub Form_Paint()
- Dim SysRes As Integer
- Dim PrintText As String
- PrintText = "Progress Software Corporation FTP Explorer Version 1.0"
- Me.CurrentY = 150
- Me.CurrentX = 1100
- Print PrintText;
- PrintText = "Copyright " & Chr(169) & " 1996 Progress Software Corporation"
- Me.CurrentY = 375
- Me.CurrentX = 1100
- Print PrintText;
- PrintText = "This product is licensed to:"
- Me.CurrentY = 750
- Me.CurrentX = 1100
- Print PrintText;
- Me.CurrentY = 1150
- Me.CurrentX = 1200
- Print "Internet ToolPak Customer";
- Me.CurrentY = 1375
- Me.CurrentX = 1200
- Print "Your Company";
- PrintText = "Serial number: 00000000-00"
- Me.CurrentY = 1600
- Me.CurrentX = 1200
- Print PrintText;
- End Sub
- Private Sub imgIcon_DblClick()
- MsgBox "This software designed by Val", vbOKOnly, "HTTP Explorer"
- End Sub
-